summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2022-12-09 23:03:19 +0100
committerGitHub <noreply@github.com>2022-12-09 23:03:19 +0100
commitf6e705737a49ea7e10392181cb2f115ed3543941 (patch)
tree1c76506db8c98b6090e5b3ae829798f2b6b0cf77
parentMerge pull request #9411 from Saalvage/fix/unlock-mutex (diff)
parentFix compilation error (diff)
downloadyuzu-f6e705737a49ea7e10392181cb2f115ed3543941.tar
yuzu-f6e705737a49ea7e10392181cb2f115ed3543941.tar.gz
yuzu-f6e705737a49ea7e10392181cb2f115ed3543941.tar.bz2
yuzu-f6e705737a49ea7e10392181cb2f115ed3543941.tar.lz
yuzu-f6e705737a49ea7e10392181cb2f115ed3543941.tar.xz
yuzu-f6e705737a49ea7e10392181cb2f115ed3543941.tar.zst
yuzu-f6e705737a49ea7e10392181cb2f115ed3543941.zip
-rw-r--r--src/video_core/engines/draw_manager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/engines/draw_manager.cpp b/src/video_core/engines/draw_manager.cpp
index c59524e58..b213c374f 100644
--- a/src/video_core/engines/draw_manager.cpp
+++ b/src/video_core/engines/draw_manager.cpp
@@ -180,7 +180,7 @@ void DrawManager::ProcessTopologyOverride() {
}
void DrawManager::ProcessDraw(bool draw_indexed, u32 instance_count) {
- LOG_TRACE(HW_GPU, "called, topology={}, count={}", draw_state.topology.Value(),
+ LOG_TRACE(HW_GPU, "called, topology={}, count={}", draw_state.topology,
draw_indexed ? draw_state.index_buffer.count : draw_state.vertex_buffer.count);
ProcessTopologyOverride();